﻿body {
    padding-top: 60px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.dashboard-card {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    display: block; /* Ensure the anchor behaves like a block element */
}

    .dashboard-card:hover {
        transform: translateY(-5px);
    }

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #4CAF50;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
}

@media (max-width: 768px) {
    .card-group {
        flex-direction: column;
    }
}
